home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / nss / devm.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  5KB  |  246 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is the Netscape security libraries.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1994-2000
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. #ifndef DEVM_H
  38. #define DEVM_H
  39.  
  40. #ifdef DEBUG
  41. static const char DEVM_CVS_ID[] = "@(#) $RCSfile: devm.h,v $ $Revision: 1.11 $ $Date: 2005/01/20 02:25:47 $";
  42. #endif /* DEBUG */
  43.  
  44. #ifndef BASE_H
  45. #include "base.h"
  46. #endif /* BASE_H */
  47.  
  48. #ifndef NSSCKT_H
  49. #include "nssckt.h"
  50. #endif /* NSSCKT_H */
  51.  
  52. #ifndef DEV_H
  53. #include "dev.h"
  54. #endif /* DEV_H */
  55.  
  56. #ifndef DEVTM_H
  57. #include "devtm.h"
  58. #endif /* DEVTM_H */
  59.  
  60. PR_BEGIN_EXTERN_C
  61.  
  62. /* Shortcut to cryptoki API functions. */
  63. #define CKAPI(epv) \
  64.     ((CK_FUNCTION_LIST_PTR)(epv))
  65.  
  66. NSS_EXTERN void
  67. nssDevice_AddRef
  68. (
  69.  struct nssDeviceBaseStr *device
  70. );
  71.  
  72. NSS_EXTERN PRBool
  73. nssDevice_Destroy
  74. (
  75.  struct nssDeviceBaseStr *device
  76. );
  77.  
  78. NSS_EXTERN PRBool
  79. nssModule_IsThreadSafe
  80. (
  81.   NSSModule *module
  82. );
  83.  
  84. NSS_EXTERN PRBool
  85. nssModule_IsInternal
  86. (
  87.   NSSModule *mod
  88. );
  89.  
  90. NSS_EXTERN PRBool
  91. nssModule_IsModuleDBOnly
  92. (
  93.   NSSModule *mod
  94. );
  95.  
  96. NSS_EXTERN void *
  97. nssModule_GetCryptokiEPV
  98. (
  99.   NSSModule *mod
  100. );
  101.  
  102. NSS_EXTERN NSSSlot *
  103. nssSlot_Create
  104. (
  105.   CK_SLOT_ID slotId,
  106.   NSSModule *parent
  107. );
  108.  
  109. NSS_EXTERN void *
  110. nssSlot_GetCryptokiEPV
  111. (
  112.   NSSSlot *slot
  113. );
  114.  
  115. NSS_EXTERN NSSToken *
  116. nssToken_Create
  117. (
  118.   CK_SLOT_ID slotID,
  119.   NSSSlot *peer
  120. );
  121.  
  122. NSS_EXTERN void *
  123. nssToken_GetCryptokiEPV
  124. (
  125.   NSSToken *token
  126. );
  127.  
  128. NSS_EXTERN nssSession *
  129. nssToken_GetDefaultSession
  130. (
  131.   NSSToken *token
  132. );
  133.  
  134. NSS_EXTERN PRBool
  135. nssToken_IsLoginRequired
  136. (
  137.   NSSToken *token
  138. );
  139.  
  140. NSS_EXTERN void
  141. nssToken_Remove
  142. (
  143.   NSSToken *token
  144. );
  145.  
  146. NSS_EXTERN nssCryptokiObject *
  147. nssCryptokiObject_Create
  148. (
  149.   NSSToken *t, 
  150.   nssSession *session,
  151.   CK_OBJECT_HANDLE h
  152. );
  153.  
  154. NSS_EXTERN nssTokenObjectCache *
  155. nssTokenObjectCache_Create
  156. (
  157.   NSSToken *token,
  158.   PRBool cacheCerts,
  159.   PRBool cacheTrust,
  160.   PRBool cacheCRLs
  161. );
  162.  
  163. NSS_EXTERN void
  164. nssTokenObjectCache_Destroy
  165. (
  166.   nssTokenObjectCache *cache
  167. );
  168.  
  169. NSS_EXTERN void
  170. nssTokenObjectCache_Clear
  171. (
  172.   nssTokenObjectCache *cache
  173. );
  174.  
  175. NSS_EXTERN PRBool
  176. nssTokenObjectCache_HaveObjectClass
  177. (
  178.   nssTokenObjectCache *cache,
  179.   CK_OBJECT_CLASS objclass
  180. );
  181.  
  182. NSS_EXTERN nssCryptokiObject **
  183. nssTokenObjectCache_FindObjectsByTemplate
  184. (
  185.   nssTokenObjectCache *cache,
  186.   CK_OBJECT_CLASS objclass,
  187.   CK_ATTRIBUTE_PTR otemplate,
  188.   CK_ULONG otlen,
  189.   PRUint32 maximumOpt,
  190.   PRStatus *statusOpt
  191. );
  192.  
  193. NSS_EXTERN PRStatus
  194. nssTokenObjectCache_GetObjectAttributes
  195. (
  196.   nssTokenObjectCache *cache,
  197.   NSSArena *arenaOpt,
  198.   nssCryptokiObject *object,
  199.   CK_OBJECT_CLASS objclass,
  200.   CK_ATTRIBUTE_PTR atemplate,
  201.   CK_ULONG atlen
  202. );
  203.  
  204. NSS_EXTERN PRStatus
  205. nssTokenObjectCache_ImportObject
  206. (
  207.   nssTokenObjectCache *cache,
  208.   nssCryptokiObject *object,
  209.   CK_OBJECT_CLASS objclass,
  210.   CK_ATTRIBUTE_PTR ot,
  211.   CK_ULONG otlen
  212. );
  213.  
  214. NSS_EXTERN void
  215. nssTokenObjectCache_RemoveObject
  216. (
  217.   nssTokenObjectCache *cache,
  218.   nssCryptokiObject *object
  219. );
  220.  
  221. /* XXX allows peek back into token */
  222. NSS_EXTERN PRStatus
  223. nssToken_GetCachedObjectAttributes
  224. (
  225.   NSSToken *token,
  226.   NSSArena *arenaOpt,
  227.   nssCryptokiObject *object,
  228.   CK_OBJECT_CLASS objclass,
  229.   CK_ATTRIBUTE_PTR atemplate,
  230.   CK_ULONG atlen
  231. );
  232.  
  233. /* PKCS#11 stores strings in a fixed-length buffer padded with spaces.  This
  234.  * function gets the length of the actual string.
  235.  */
  236. NSS_EXTERN PRUint32
  237. nssPKCS11String_Length
  238. (
  239.   CK_CHAR *pkcs11str, 
  240.   PRUint32 bufLen
  241. );
  242.  
  243. PR_END_EXTERN_C
  244.  
  245. #endif /* DEV_H */
  246.